Convert a string into datetimeΒΆ

Convert a string into datetime
from datetime import datetime

date_obj = datetime.strptime('May 12 2016  2:25AM', '%b %d %Y %I:%M%p')

print(date_obj)

Output:

2016-05-12 02:25:00